home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / skins / Border.as next >
Text File  |  2009-02-12  |  510b  |  26 lines

  1. package mx.skins
  2. {
  3.    import mx.core.EdgeMetrics;
  4.    import mx.core.IBorder;
  5.    import mx.core.mx_internal;
  6.    
  7.    use namespace mx_internal;
  8.    
  9.    public class Border extends ProgrammaticSkin implements IBorder
  10.    {
  11.       
  12.       mx_internal static const VERSION:String = "3.0.0.0";
  13.        
  14.       
  15.       public function Border()
  16.       {
  17.          super();
  18.       }
  19.       
  20.       public function get borderMetrics() : EdgeMetrics
  21.       {
  22.          return EdgeMetrics.EMPTY;
  23.       }
  24.    }
  25. }
  26.